home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / hypercrd / xcmds / dvlprstc.hqx / Developer Stack 1.3r / card_44343.txt < prev    next >
Text File  |  1991-04-30  |  2KB  |  64 lines

  1. -- card: 44343 from stack: in.3r
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 3837
  5. -- name: AboutMe
  6.  
  7.  
  8. -- part contents for background part 10
  9. ----- text -----
  10. 54
  11.  
  12. -- part contents for background part 27
  13. ----- text -----
  14. XFCN
  15.  
  16. -- part contents for background part 5
  17. ----- text -----
  18. AboutMe
  19.  
  20. -- part contents for background part 6
  21. ----- text -----
  22. AboutMe allows you to personalize your stack by adding a "About MyStack..." choice to the Apple Menu. 
  23.  
  24. An "About MyApplication..." menu choice is the Macintosh standard way of providing information about your application to the user. You can now add this feature to your stacks. 
  25.  
  26. If you like AboutMe and plan to use in your stacks,  feel free to do it. However, if you send a registration fee of $5 and a blank disk, We will send back to you the XFCN RmveAbout. This XFCN will allow you to remove the "About" menu choice created by AboutMe, so you would ideally call AboutMe in the OpenStack script and RmveAbout in the CloseStack Script of your Stack. 
  27.  
  28. Please send registration fee and blank disk to : 
  29. Softech Solution 
  30. P.O. Box 4957 
  31. Walnut Creek, CA 94596 
  32. Attn.: Eduardo Mendez
  33. AppleLink: D1051
  34. GENIE: E.Mendez 
  35.  
  36. If  sending a check, please make it payable to Eduardo Mendez. 
  37.  
  38.  
  39. -- part contents for background part 7
  40. ----- text -----
  41. Syntax:
  42.  
  43.     AboutMe(aboutMessage) 
  44.  
  45. <aboutMessage> is text to be displayed in the Apple Menu. 
  46.  
  47. Values returned by XFCN: 
  48.  0   =>  successful execution 
  49. -1  =>   parameter is missing 
  50. Note: AboutMe hides the menu bar, so it is up to you to redisplay it if needed. 
  51.  
  52. When the user selects the menu choice added by AboutMe from the Apple Menu, the message "doMenu aboutMessage" is sent to Hypercard. You should write a script to handle the message and display the information needed to identify your stack. 
  53.  
  54. Example: 
  55. on doMenu trap 
  56.   if trap is "About AboutMe..." then 
  57.     push card
  58.     go to card 4336
  59.   else 
  60.     pass doMenu 
  61.   end if 
  62. end doMenu 
  63.  
  64.